home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ IE Options 10.xpl < prev    next >
Text File  |  2003-11-19  |  1KB  |  43 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Internet\Internet Explorer\URL Handling"
  5. "NAME"="Show Full URLs"
  6. "LANGUAGE"="VBScript"
  7. "VERSION"="1.01"
  8. "TEXT 1"="Show full (fully qualified) URLs in statusbar"
  9. "DESCRIPTION 1"="By default, IE uses so called "Friendly URLs". This means, it will not show the fully qualified URL (e.g. http://www.myhome.com/mypage.htm), only a "friendly" version "Shortcut to mypage.html"."
  10. "DESCRIPTION 2"="If this setting is activated, IE will display the entire URL again."
  11. "DESCRIPTION 3"="Please restart IE after making this change."
  12. "AUTHOR"="Xteq Systems"
  13. "CONTACTURL"="http://www.xteq.com"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"="Setting found by AXCEL216"
  16. "COMMENT 2"="see http://members.aol.com/axcel216/newtip23.htm#SFU"
  17.  
  18. sV1="HKCU\Software\Microsoft\Internet Explorer\Show_FullURL" 'dw 1/0
  19. sV2="HKCU\Software\Microsoft\Internet Explorer\Main\Show_FullURL" 'str yes/no
  20.  
  21. SUB Plugin_Initialize  
  22.   s1=RegReadValue(sV1)
  23.   s2=RegReadValue(sV2)
  24.  
  25.   if s1="0" and s2="no" then SetUIElement 1,true
  26. END SUB
  27.  
  28. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  29.  b=GetUIElement(1)
  30.  if b=false then
  31.     Call RegWriteValue(sV1,1,2)
  32.     Call RegWriteValue(sV2,"yes",1)
  33.  else 
  34.     Call RegWriteValue(sV1,0,2)
  35.     Call RegWriteValue(sV2,"no",1)
  36.  end if
  37.  
  38. END SUB
  39.  
  40. SUB Plugin_Terminate
  41. END SUB
  42.  
  43.